home *** CD-ROM | disk | FTP | other *** search
/ The X-Philes (2nd Revision) / The X-Philes Number 1 (1995).iso / xphiles / hp95 / gnuchess.arc / mk < prev    next >
Text File  |  1992-01-16  |  248b  |  12 lines

  1. # Simply makefile for compiling and checking for syntax errors under unix.
  2. CFLAGS = -g
  3. CC = gcc -D_near=
  4.  
  5. gg:    gnuchess.o piece.o hp95.o
  6.     $(CC) $(CFLAGS) -o gg *.o -lcurses -ltermcap -lcurses
  7. gnuchess.o: gnuchess.c
  8.  
  9. piece.o: piece.c
  10.  
  11. hp95.o: hp95.c
  12.